-
Notifications
You must be signed in to change notification settings - Fork 1.9k
fix(ci): sui binary caching #20539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(ci): sui binary caching #20539
Conversation
f9ef7bc to
d78e087
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR fixes the Sui binary caching mechanism in GitHub Actions by correcting the installation path used for caching. The previous path (~/.suiup/bin) no longer exists after changes in #20533, causing cache validation errors. The fix updates the cache path to the actual installation location (~/.local/bin/sui) and removes the obsolete path from the PATH environment variable.
Key Changes:
- Updated cache path from
~/.suiup/binto~/.local/bin/suito match the actual installation location - Removed
~/.suiup/binfrom the PATH environment variable since it's no longer used
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|





Changes
Motivation
There were installation issues which were fixed in #20533, but it broke the SUI binary cache.
For example: https://github.com/smartcontractkit/chainlink/actions/runs/19968771608/job/57267681721#step:38:3
Testing